home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / WASTE 1.2 / WASTE C⁄C++ Headers / LongCoords.h next >
Text File  |  1996-05-19  |  424b  |  32 lines

  1. /*
  2.  *    LongCoords.h
  3.  *
  4.  *    C/C++ interface to the WASTE text engine:
  5.  *    Long Coordinates
  6.  *
  7.  *    version 1.2
  8.  *
  9.  *    Copyright (c) 1993-1996 Marco Piovanelli
  10.  *    All Rights Reserved
  11.  * 
  12.  */
  13.  
  14. #ifndef __LONGCOORDINATES__ 
  15. #ifndef _LongCoords_
  16. #define _LongCoords_
  17.  
  18. typedef struct LongPt {
  19.     SInt32 v;
  20.     SInt32 h;
  21. } LongPt;
  22.  
  23. typedef struct LongRect {
  24.     SInt32 top;
  25.     SInt32 left;
  26.     SInt32 bottom;
  27.     SInt32 right;
  28. } LongRect;
  29.  
  30. #endif
  31. #endif
  32.